home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / BORLAND TURBO ASSEMBLER / THUNK95.PAK / DLL16.DEF < prev    next >
Text File  |  1996-01-10  |  643b  |  24 lines

  1. DESCRIPTION  'Module definition file for 16-bit DLL'
  2. EXETYPE  WINDOWS
  3.  
  4. CODE    PRELOAD MOVEABLE DISCARDABLE
  5. DATA    PRELOAD MOVEABLE SINGLE
  6.  
  7. ; If the 16-bit DLL is not marked for Windows 4.0,
  8. ; the DllEntryPoint function will not be called.
  9. SUBSYSTEM 4.0
  10.  
  11. HEAPSIZE 5120
  12.  
  13. ; Since pascal calling convention is being used in the 16-bit world,
  14. ; all symbols will have been force to upper case by the compiler, and
  15. ; by the assembler by default.
  16. EXPORTS
  17.    DLLENTRYPOINT        @1 RESIDENTNAME
  18.    THUNKOBJ_THUNKDATA16 @2
  19.    FUNC16               @3
  20.  
  21. IMPORTS
  22.    C16THKSL01        = KERNEL.631
  23.    THUNKCONNECT16    = KERNEL.651
  24.